is it possible to add xsl and css in same xml file

106

/*Add a link to your CSS file:*/

<xsl:template match="/">
    <html>
        <head>
            <link rel="stylesheet" href="path/to/your/css/file.css">
        </head>
        <body>
            <xsl:apply-templates select="Book"/>
        </body>
    </html> 
</xsl:template>

Comments

Submit
0 Comments